home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1996 / MacHack 1996.toast / Presentations / Presentations ’92 / PatchWorks Kit / <PatchWorks++> / Extension.h < prev    next >
Text File  |  1992-05-30  |  598b  |  34 lines

  1. /*
  2.     Extension.h
  3.     
  4.     Forward declarations for installation/removal functions.
  5.     
  6.     Part of PatchWorks, the Extension Development Framework.
  7.     
  8.     by Mouse Herrell & Patrick Beard.
  9.     
  10.     Permission is granted to use this source code for any purpose, as long
  11.     as the copyright notice is maintained.
  12.     
  13.     © 1992 Berkeley Systems, Inc.
  14. */
  15.  
  16. #pragma once
  17.  
  18. #ifndef    __EXTENSION__
  19. #define __EXTENSION__
  20.  
  21. #ifndef __TYPES__
  22. #include <Types.h>
  23. #endif
  24.  
  25. extern short theSystemVersion;
  26. extern Boolean theCQDFlag;
  27. extern Handle theExtensionCode;
  28.  
  29. void Install(void);
  30. void Remove(void);
  31. void InstallShutDownTask(void);
  32.  
  33. #endif
  34.